n = 1
password = input()

while password != 'cactus':
    n += 1
    print("Wrong password")
    password = input()

    if n >= 3:
        print('Твърде много грешки')

    if n >= 5:
        print('Вашият акаунт ще бъде заключен!')
        break

if password == 'cactus':
    print('Здравейте!')